java中Comparable的例子和用法

您所在的位置:网站首页 java comparable用法 java中Comparable的例子和用法

java中Comparable的例子和用法

2024-07-13 10:43:43| 来源: 网络整理| 查看: 265

3.5 Comparable的用法  

马克-to-win:前面讲过进入TreeSet的每个元素是都排了序的,如果被添加的元素是我们自己定义的,就需要告诉TreeSet排序的规则,这个规则就要在Comparable中定义。在下面的例子中, 当我们要往TreeSet中添加我们自己定义的类Worker对象时,就在compareTo中定义排序规则。

例:3.5.1 

/*why in the past never implements Comparable? becasue Integer claas and String class both implements this Comparable. java.lang.Object java.lang.String All Implemented Interfaces: CharSequence, Comparable, Serializable  */ import java.util.*; //Comparable接口在java.lang包中定义 //定义的方法: //int compareTo(Object o); //实现该接口就可以实现按用户定义的自然顺序排列对象。 /*you must implements Comparable,otherwise, when you add the second element into  the treeset, it will report error, because it will search for Comparable  interface. */ class Worker implements Comparable {     int workNum;     String name;     int money;     public Worker(int workNum, String name, int money) {         this.workNum = workNum;         this.name = name;         this.money = money;     }     // 按工资排序     /*      * public int compareTo(Object o) Returns: a negative integer, zero, or a      * positive integer as this object is less than, equal to, or greater than      * the specified object. it looks like that the one that is in front is      * small. what if two keys are the same? only print out one item.      */     public int compareTo(Object o) {         Worker e = (Worker) o;         return money - e.money;//到底谁减谁,讲师如想搞清楚,请听配套视频里的仔细分析。         // return workNum - e.workNum;     } } 更多请见:https://blog.csdn.net/qq_43650923/article/details/100831985



【本文地址】

公司简介

联系我们

今日新闻


点击排行

实验室常用的仪器、试剂和
说到实验室常用到的东西,主要就分为仪器、试剂和耗
不用再找了,全球10大实验
01、赛默飞世尔科技(热电)Thermo Fisher Scientif
三代水柜的量产巅峰T-72坦
作者:寞寒最近,西边闹腾挺大,本来小寞以为忙完这
通风柜跟实验室通风系统有
说到通风柜跟实验室通风,不少人都纠结二者到底是不
集消毒杀菌、烘干收纳为一
厨房是家里细菌较多的地方,潮湿的环境、没有完全密
实验室设备之全钢实验台如
全钢实验台是实验室家具中较为重要的家具之一,很多

推荐新闻


图片新闻

实验室药品柜的特性有哪些
实验室药品柜是实验室家具的重要组成部分之一,主要
小学科学实验中有哪些教学
计算机 计算器 一般 打孔器 打气筒 仪器车 显微镜
实验室各种仪器原理动图讲
1.紫外分光光谱UV分析原理:吸收紫外光能量,引起分
高中化学常见仪器及实验装
1、可加热仪器:2、计量仪器:(1)仪器A的名称:量
微生物操作主要设备和器具
今天盘点一下微生物操作主要设备和器具,别嫌我啰嗦
浅谈通风柜使用基本常识
 众所周知,通风柜功能中最主要的就是排气功能。在

专题文章

    CopyRight 2018-2019 实验室设备网 版权所有 win10的实时保护怎么永久关闭